import this
A name that is used to denote something or a value is called a variable. In python, variables can be declared and values can be assigned to it as follows,
x = 2
y = 5
xy = 'Hey'
print (x+y, xy)
Multiple variables can be assigned with the same value.
x = y = 1
print (x,y)
Symbol | Task Performed |
---|---|
+ | Addition |
- | Subtraction |
/ | division |
% | mod |
* | multiplication |
// | floor division |
** | to the power of |
1+2
2-1
1*2
1/2
1/2.0
15%10
Floor division is nothing but converting the result so obtained to the nearest integer.
2.8//2.0
Symbol | Task Performed |
---|---|
== | True, if it is equal |
!= | True, if not equal to |
< | less than |
> | greater than |
<= | less than or equal to |
>= | greater than or equal to |
z = 1
z == 1
z > 1
Symbol | Task Performed |
---|---|
& | Logical And |
l | Logical OR |
^ | XOR |
~ | Negate |
>> | Right shift |
<< | Left shift |
a = 2 #10
b = 3 #11
print (a & b)
print (bin(a&b))
print(bin(a&b)[2:])
5 >> 1
0000 0101 -> 5
Shifting the digits by 1 to the right and zero padding
0000 0010 -> 2
5 << 1
0000 0101 -> 5
Shifting the digits by 1 to the left and zero padding
0000 1010 -> 10
Python comes loaded with pre-built functions
Conversion from hexadecimal to decimal is done by adding prefix 0x to the hexadecimal value or vice versa by using built in hex( ), Octal to decimal by adding prefix 0 to the octal value or vice versa by using built in function oct( ).
hex(170)
0xAA
oct(8)
0o10
int( ) accepts two values when used for conversion, one is the value in a different number system and the other is its base. Note that input number in the different number system should be of string type.
print (int('010',8))
print (int('0xaa',16))
print (int('1010',2))
int( ) can also be used to get only the integer value of a float number or can be used to convert a number which is of type string to integer format. Similarly, the function str( ) can be used to convert the integer back to string format
print (int(7.7))
print (int('7'))
Also note that function bin( ) is used for binary and float( ) for decimal/float values. chr( ) is used for converting ASCII to its alphabet equivalent, ord( ) is used for the other way round.
chr(98)
ord('b')
round( ) function rounds the input value to a specified number of places or to the nearest integer.
print (round(5.6231))
print (round(4.55892, 2))
complex( ) is used to define a complex number and abs( ) outputs the absolute value of the same.
c =complex('5+2j')
print (abs(c))
divmod(x,y) outputs the quotient and the remainder in a tuple(you will be learning about it in the further chapters) in the format (quotient, remainder).
divmod(9,2)
isinstance( ) returns True, if the first argument is an instance of that class. Multiple classes can also be checked at once.
print (isinstance(1, int))
print (isinstance(1.0,int))
print (isinstance(1.0,(int,float)))
cmp(x,y) works in python 2 not in 3
x ? y | Output |
---|---|
x < y | -1 |
x == y | 0 |
x > y | 1 |
#print cmp(1,2)
#print cmp(2,1)
#print cmp(2,2)
pow(x,y,z) can be used to find the power $x^y$ also the mod of the resulting value with the third specified number can be found i.e. : ($x^y$ % z).
from math import pow
print (pow(3,3))
help(pow)
range( ) function outputs the integers of the specified range. It can also be used to generate a series by specifying the difference between the two numbers within a particular range. The elements are returned in a list (will be discussing in detail later.)
print (list(range(3)))
print (list(range(2,9)))
print (list(range(2,27,8)))
abc = input("Type something here and it will be stored in variable abc \t")
type(abc)
input( ), this is used only for accepting only integer inputs.
abc1 = int(input("Only integer can be stored in variable abc \t"))
type(abc1)
Note that type( ) returns the format or the type of a variable or a number